runtime.m.isExtraInC (field)

9 uses

	runtime (current package)
		cgocall.go#L353: 		gp.m.isExtraInC = false
		cgocall.go#L373: 		gp.m.isExtraInC = true
		proc.go#L2439: 	mp.isExtraInC = false
		proc.go#L2529: 	mp.isExtraInC = true
		proc.go#L5128: 	if !mp.isExtraInC {
		proc.go#L5148: 	if !mp.isExtraInC {
		runtime2.go#L658: 	isExtraInC      bool          // m is an extra m that does not have any Go frames
		signal_unix.go#L439: 	if gp == nil || (gp.m != nil && gp.m.isExtraInC) {
		signal_unix.go#L1219: 	if gp != nil && gp.m != nil && gp.m.curg != nil && !gp.m.isExtraInC && !gp.m.incgo {